home *** CD-ROM | disk | FTP | other *** search
/ Games of Daze / Infomagic - Games of Daze (Summer 1995) (Disc 1 of 2).iso / djgpp / diffs / make-3.71 / commands.c next >
Encoding:
Text File  |  1994-08-05  |  697 b   |  27 lines

  1. *** orig/make-3.71/commands.c    Thu Jul 21 01:29:32 1994
  2. --- src/make-3.71/commands.c    Thu Jul 21 01:32:04 1994
  3. ***************
  4. *** 329,334 ****
  5. --- 329,335 ----
  6.   fatal_error_signal (sig)
  7.        int sig;
  8.   {
  9. + #ifndef __MSDOS__
  10.     handling_fatal_signal = 1;
  11.   
  12.     /* Set the handling for this signal to the default.
  13. ***************
  14. *** 385,390 ****
  15. --- 386,396 ----
  16.        will be unblocked when we return and arrive then to kill us.  */
  17.     if (kill (getpid (), sig) < 0)
  18.       pfatal_with_name ("kill");
  19. + #else /* MSDOS */
  20. +   remove_intermediates(1);
  21. +   exit(1);
  22. + #endif /* ?MSDOS */
  23.   }
  24.   
  25.   /* Delete FILE unless it's precious or not actually a file (phony),
  26.